home *** CD-ROM | disk | FTP | other *** search
Text File | 2000-06-30 | 538 b | 20 lines | [TEXT/ToyS] |
- tell application "Geo3D"
- activate
- make new document
- set x to import groups from file ":Sample Scripts:Demo.grp"
- if x > 0 then -- 0: error; x includes menu separators!
- full screen
- repeat with x from 1 to x
- -- if x is a menu separator it will be ignored by Geo3D.
- -- Return value: false
- show group x -- without multi (default)
- end repeat
- show -- show all
- show with multi -- hide all
- repeat with x from 1 to 4
- show group x with multi
- end repeat
- show group 3 with multi -- hide group 3
- stack
- end if
- end tell